home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / wnostray / wnostray.txt < prev   
Text File  |  1997-11-16  |  2KB  |  57 lines

  1. wnosTray is an OCX which lets you place an icon in the system tray.
  2. This OCX was written completely in VB5, and supports left and right clicks 
  3. and double-clicks, as well as a "flashing" action which makes having blinking
  4. icons in the systray a snap!
  5.  
  6. wnosTray is Copyright ⌐1997 Jeffrey E. Szymona  All Rights Reserved.
  7. You are permitted to use wnosTray in any application, as well as distribute
  8. the OCX file with your installation royalty-free, provided you do not take
  9. personal credit for wnosTray, or alter the OCX file in any way.
  10. Please e-mail me with any comments about wnosTray, and especially if you
  11. discover any problems or have any suggestions for additions to the features
  12. already here.  Thanks!
  13.  
  14. E-mail: grendel@epix.net
  15. wnosTray Homepage: http://www.epix.net/~grendel/vb/wnosTray.html
  16.  
  17. Special Features
  18. ----------------
  19. Flash
  20. Type: Boolean
  21. Flash allows you to make your system tray icon "flash" or blink.á When set
  22. to True, it takes the value of the Interval property and flashes the icon
  23. on and off at that rate. When Flash is set False, the icon is always
  24. restored, so there's no worry about leaving a blank icon in the system tray!
  25.  
  26. SmartClick
  27. Type: Boolean
  28. SmartClick is a fancy property of wnosTray.ocx. If you've ever noticed, most
  29. custom controls fire a Click event in the process of firing a double-click
  30. event.á While this might not matter in most application, you still might wish
  31. to have separate events firing for each when using a system tray icon.á With
  32. SmartClick, you can set the trayicon to only fire a double-click event on a
  33. double-click, allowing you this ability.
  34.  
  35. Other Properties
  36. ----------------
  37. Visible
  38. Type: Boolean
  39. Returns/sets whether the icon is in the system tray.
  40.  
  41. LeftClick, LeftDoubleClick, RightClick, RightDoubleClick
  42. Type: Event
  43. You can place any code you want executed on these events here.
  44.  
  45. ToolTipText
  46. Type: String
  47. Returns/sets the tooltip that appears when the mouse is over the icon.
  48.  
  49. Interval
  50. Type: Integer
  51. Returns/sets the rate at which an icon flashes, if Flash is set to True.
  52.  
  53. Icon
  54. Type: Icon
  55. Returns/Sets the icon seen in the tray.
  56.  
  57. Others not worth pointing out explicitly :)